Presentation & Plotly

Create a web page presentation using R Markdown that features a plot created with Plotly. Host your webpage on either GitHub Pages, RPubs, or NeoCities. Your webpage must contain the date that you created the document, and it must contain a plot created with Plotly. We would love to see you show off your creativity!

3D Surface Plot

library(plotly)
## Warning: il pacchetto 'plotly' è stato creato con R versione 4.2.1
## Caricamento del pacchetto richiesto: ggplot2
## 
## Caricamento pacchetto: 'plotly'
## Il seguente oggetto è mascherato da 'package:ggplot2':
## 
##     last_plot
## Il seguente oggetto è mascherato da 'package:stats':
## 
##     filter
## Il seguente oggetto è mascherato da 'package:graphics':
## 
##     layout
plot_ly(z=volcano, type="surface")

BoxPlot